for i in range(1000):# 1000 epochs
    try:
        train(something)# This takes a long time
        # Maybe it's displaying a really small difference in loss...
        # ...but it's frustrating because usually you can't do anything
        # about that until the function returns :P
    except KeyboardInterrupt:
        pseudo_terminal(globals())

